home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / hf.dir / 00077.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  1.6 KB  |  46 lines

  1. on enterFrame
  2.   global ghfathlete, ghfathleteno, gHFstate, gHFcurrSide, gHFcurrSidePage, gHFcurrSideSize
  3.   set vside to value(gHFstate)
  4.   set vlines to 0
  5.   set gHFcurrSide to "SIDE" & ghfathleteno & vside
  6.   set gHFcurrSidePage to 1
  7.   set gHFcurrSideSize to 3
  8.   repeat with vI = 1 to 3
  9.     if GetAssetNo(gHFcurrSide & "1" & vI) >= 1 then
  10.       set gHFcurrSideSize to vI
  11.       exit repeat
  12.     end if
  13.   end repeat
  14.   set vName to gHFcurrSide & gHFcurrSidePage & gHFcurrSideSize
  15.   set vNum to GetAssetNo(vName)
  16.   if the number of cast GetAssetNo(gHFcurrSide & gHFcurrSidePage + 1 & gHFcurrSideSize) < 1 then
  17.     set the visible of sprite 44 to 0
  18.   else
  19.     set the visible of sprite 44 to 1
  20.   end if
  21.   set gHFstate to "0"
  22.   if gHFcurrSideSize = 1 then
  23.     go("caption1a")
  24.   else
  25.     if gHFcurrSideSize = 2 then
  26.       go("caption1b")
  27.     else
  28.       if gHFcurrSideSize = 3 then
  29.         go("caption1c")
  30.       end if
  31.     end if
  32.   end if
  33.   puppetSprite(42, 1)
  34.   puppetSprite(43, 1)
  35.   if the number of cast GetAssetNo("SBTITLE" & ghfathleteno & vside & 1 & gHFcurrSideSize) >= 1 then
  36.     set the castNum of sprite 42 to cast GetAssetNo("SBTITLE" & ghfathleteno & vside & 1 & gHFcurrSideSize)
  37.     set the locV of sprite 42 to getAt(the rect of sprite 35, 2) + 5
  38.     set vOffset to getAt(the rect of sprite 35, 1)
  39.     set vWidth to the width of sprite 35 - the width of cast GetAssetNo("SBTITLE" & ghfathleteno & vside & 1 & gHFcurrSideSize)
  40.     set the locH of sprite 42 to vOffset + (vWidth / 2)
  41.     put vOffset && vWidth && vOffset + (vWidth / 2)
  42.   end if
  43.   set the castNum of sprite 43 to cast GetAssetNo(gHFcurrSide & gHFcurrSidePage & gHFcurrSideSize)
  44.   updateStage()
  45. end
  46.